home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mcms_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  108 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #
  7. # Supercedes MS02-010
  8. #
  9. # Thanks to Dave Aitel for the details.
  10. #
  11. # also covers CVE-2002-0700
  12.  
  13. if(description)
  14. {
  15.  script_id(11313);
  16.  script_bugtraq_id(4157, 4853, 5108, 5111, 5112);
  17.  script_version ("$Revision: 1.15 $");
  18.  
  19.  script_cve_id("CAN-2002-0620", 
  20.             "CVE-2002-0621", 
  21.            "CVE-2002-0622", 
  22.            "CVE-2002-0623",
  23.            "CVE-2002-0050");
  24.  if(defined_func("script_xref"))script_xref(name:"IAVA", value:"2002-B-0007");
  25.  
  26.  name["english"] = "MCMS : Buffer overflow in Profile Service";
  27.  script_name(english:name["english"]);
  28.  
  29.  desc["english"] = "
  30.  
  31. The remote host is running Microsoft Content Management Server.
  32.  
  33. There is a buffer overflow in the Profile Service which may
  34. allow an attacker to execute arbitrary code on this host.
  35.  
  36.  
  37. Solution : See http://www.microsoft.com/technet/security/bulletin/ms02-041.mspx
  38. Risk factor : High";
  39.  
  40.  script_description(english:desc["english"]);
  41.  
  42.  summary["english"] = "Checks for the presence of MCMS";
  43.  
  44.  script_summary(english:summary["english"]);
  45.  
  46.  script_category(ACT_MIXED_ATTACK);
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  49.  family["english"] = "Gain a shell remotely";
  50.  family["francais"] = "Obtenir un shell α distance";
  51.  script_family(english:family["english"], francais:family["francais"]);
  52.  script_dependencie("find_service.nes", "http_version.nasl", "www_fingerprinting_hmap.nasl");
  53.  script_require_ports("Services/www", 80);
  54.  exit(0);
  55. }
  56.  
  57.  
  58.  
  59. include("http_func.inc");
  60. include("http_keepalive.inc");
  61.  
  62. port = get_http_port(default:80);
  63. if ( ! can_host_asp(port:port) ) exit(0);
  64.  
  65.  
  66. if(safe_checks())
  67. {
  68.  if(is_cgi_installed_ka(port:port, item:"/NR/System/Access/ManualLoginSubmit.asp"))
  69.  {
  70.   report = "
  71. The remote host is running Microsoft Content Management Server.
  72.  
  73. There is a buffer overflow in the Profile Service which may
  74. allow an attacker to execute arbitrary code on this host.
  75.  
  76. *** Since safe checks are enabled, Nessus did not actually
  77. *** test for this flaw but relied on the presence of 
  78. *** /NR/System/Access/ManualLoginSubmit.asp to issue this
  79. *** warning.
  80.  
  81. Solution : See http://www.microsoft.com/technet/security/bulletin/ms02-041.mspx
  82. Risk factor : High";
  83.  
  84.   security_hole(port:port, data:report);
  85.  }
  86.  exit(0);
  87. }
  88.  
  89.  
  90. if(!is_cgi_installed_ka(port:port, item:"/NR/System/Access/ManualLoginSubmit.asp"))exit(0);
  91.  
  92. payload = string("NR_DOMAIN=WinNT%3A%2F%2F0AG4ZA0SR80BCRG&NR_DOMAIN_LIST=WinNT%3A%2F%2F0AG4ZA0SR80BCRG&NR_USER=Administrator&NR_PASSWORD=asdf&submit1=Continue&NEXTURL=%2FNR%2FSystem%2FAccess%2FDefaultGuestLogin.asp");
  93. req = http_post(item:"/NR/System/Access/ManualLoginSubmit.asp", port:port);
  94. idx = stridx(req, string("\r\n\r\n"));
  95. req = insstr(req, string("\r\nContent-Type: application/x-www-form-urlencoded\r\n",
  96.                     "Content-Length: ", strlen(payload), "\r\n\r\n"), idx);
  97.  
  98. req = string(req, payload);
  99. soc = http_open_socket(port);
  100. if(!soc)exit(0);
  101. send(socket:soc, data:req);
  102.  
  103. r = recv_line(socket:soc, length:4096);
  104. http_close_socket(soc);
  105.  
  106. if(!r) { security_hole(port); exit(0); }
  107. if(ereg(pattern:"^HTTP/[0-9]\.[0-9] 500 .*", string:r))security_hole(port);
  108.